home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d8 / xfer42.arc / WHATSNEW.DOC < prev    next >
Text File  |  1991-08-03  |  6KB  |  131 lines

  1. /*
  2.  * XFER Zmodem Transfer Shell - Version 4.2
  3.  *
  4.  * Updated 08/03/91: Version 4.2
  5.  *      - Support for new Omen Tech GSZ.EXE added.  Use the Z Program
  6.  *        selection on the setup menu to choose between DSZ and GSZ.
  7.  *
  8.  * Updated 06/09/91: Version 4.2
  9.  *      - OZBExt Download support added.
  10.  *
  11.  * Updated 03/02/91: Version 4.1
  12.  *      - ColorSet functions added.
  13.  *
  14.  * Updated 01/10/91: Version 4.0
  15.  *      - New user interface implemented.
  16.  *      - XFER.CFG returns.  This is the easiest way to handle setup
  17.  *        stuff, especially under the new menu system.  The DOS
  18.  *        environment variables are no longer necessary.
  19.  *      - Bug in 3.5 with the upload directory is corrected in this
  20.  *        release.
  21.  *
  22.  * Updated 12/20/90: Version 3.5
  23.  *      - Separate UP/DOWN directories option.  Since this was the
  24.  *        overwhelmingly requested item for the past few months I
  25.  *        thought I should finally get around to adding it.  It is
  26.  *        an OPTION.  The old XFERDIR DOS variable still works, and
  27.  *        if it exists, it will be used for both up and downloading.
  28.  *        If it does not exist, the program looks for two other DOS
  29.  *        variables, XFERUP and XFERDOWN.  If they don't exist, the
  30.  *        program bombs out.
  31.  *      - In the process of adding the up/down directory option, I
  32.  *        rewrote the portion of the program that changes to the
  33.  *        proper drive and directory before calling DSZ, and
  34.  *        optimized it a bit--took about 200 bytes off the compiled
  35.  *        program size.  Whoopee.  Also, I had reports that XFER would
  36.  *        not work with Desqview.  Maybe the changes I made will take
  37.  *        care of that.  I can't test it myself since I don't own
  38.  *        Desqview.
  39.  *      - Added the /P command line option for ProMice users.  This
  40.  *        simply reactivates the ProMice menu just before leaving
  41.  *        XFER, so the ProMice setup isn't disabled.  Contact Neil
  42.  *        W. DeChambeau, author of ProMice, for problems.
  43.  *      - Added the /S command line option for complete silence.  If
  44.  *        this option is specified, there will be NO SOUND.
  45.  *
  46.  * Updated 11/02/90: Version 3.4.1
  47.  *      - Added ProMice support--ProMice menus reactivated when XFER
  48.  *        terminates normally.
  49.  *
  50.  * Updated 08/15/90: Version 3.4
  51.  *      - Smaller .COM file format.  Reduced overall program size
  52.  *        by 4k.
  53.  *      - Updated music routines using latest version of Soundkit.
  54.  *      - Fixed a bug with the mouse cursor leaving a character
  55.  *        behind it on the Batch Upload screen.
  56.  *
  57.  * Updated 05/07/90: Version 3.3
  58.  *      - Just when you think you have it all figured out . . .
  59.  *        I discovered that putting the download directory on the
  60.  *        command line made it impossible to use XFER with
  61.  *        Procomm 2.4.x, which does not allow command line options.
  62.  *        Instead, the download directory is now in a DOS
  63.  *        environment variable (XFERDIR) which XFER looks at.
  64.  *        This speeds program execution a little.
  65.  *      - Put the menu back into the program rather than using the
  66.  *        external file (which worked but was too gimmicky).
  67.  *      - Made the mouse cursor yellow.
  68.  *
  69.  * Updated 04/29/90: Version 3.3
  70.  *      - Mouse support added on main menu and in the point and
  71.  *        shoot file selection system.  Program size increased
  72.  *        by less than 1k.
  73.  *
  74.  * Updated 04/23/90: Version 3.3
  75.  *      - Menu change implemented, which replaced the old menu with
  76.  *        one that will be mouseable at some time in the future.
  77.  *        The new menu also changed the keystrokes to ones more in-
  78.  *        tuitive for the user, rather than straight alphabet.
  79.  *      - Removed the XFER.CFG file business, replacing it with
  80.  *        a command line parameter instead, and totally eliminating
  81.  *        one of the variables, which was redundant.
  82.  *      - Both of these changes slightly reduced overall program
  83.  *        code size.
  84.  *
  85.  * Updated 04/21/90: Version 3.2
  86.  *      - Bug Fixes: Version 3.1 did NOT properly change directories
  87.  *        under certain circumstances, and would not change drives
  88.  *        under ANY circumstances.  Corrected via new logdir()
  89.  *        function.  This affected the download directory.
  90.  *      - Also, corrected a transient bug in the NoBach and NoRemove
  91.  *        variables, so they now function correctly 100% of the time.
  92.  *      - Version 3.2 now cleans up after itself, deleting the Z.LST
  93.  *        file upon exit unless the /r command line param is used.
  94.  *        Thanks to Steven Conrad for the suggestion.
  95.  *      - Updated the sound routines to use SoundKit functions.
  96.  *
  97.  * Updated 04/08/90: Version 3.2
  98.  *      - added /r command line support.  This option suppresses
  99.  *        the creation of a new Z.LST file if one already exists.
  100.  *        This is primarily useful for uploading the same set of
  101.  *        files on a daily basis.
  102.  *
  103.  * Updated 04/07/90: Version 3.1
  104.  *      - corrected bug in [C] upload point and shoot:  If the
  105.  *        up/download directory was empty, the program would
  106.  *        error out.
  107.  *      - monochrome monitor support added.
  108.  *
  109.  * Updated 03/23/90:
  110.  *      - point and shoot for BATCH transfers added
  111.  *      - MobyTurbo added
  112.  *      - /N command line switch for NoBach added
  113.  *
  114.  * Updated 02/15/90:
  115.  *      - Zmodem AutoDownload(tm) support added
  116.  *
  117.  * Updated 10/08/89:
  118.  *      - Changed title screen for official release of version 2.0
  119.  *
  120.  * Updated 07/28/89:
  121.  *      - Version 2.0
  122.  *      - Support for monochrome monitor systems
  123.  *      - Now uses Zmodem Compressed when sending.  DSZ automatically
  124.  *        falls back to regular Zmodem if receiving system does not
  125.  *        support Zmodem Compressed.  -Z parameter.
  126.  *      - Won't disconnect if No Carrier Detected.  d parameter.
  127.  *      - Pop-Up Directory selection for single file uploading.
  128.  *
  129.  */
  130.  
  131.